/* ============================================================
   style.css — مطعم سوريانا
   ============================================================
   ⚠️  هذا الملف يحتوي على fallback values فقط في :root
       القيم الحقيقية تُحقن ديناميكياً من Django في base.html:

       <style>
         :root {
           --bg:          {{ site_settings.dark_bg }};
           --primary:     {{ site_settings.primary_color }};
           --primary-rgb: {{ site_settings.primary_color_rgb }};
           --bg-rgb:      {{ site_settings.dark_bg_rgb }};
           --card:        {{ site_settings.card_color }};
           --card-2:      {{ site_settings.card_color_2 }};
           --text:        {{ site_settings.text_color }};
           --text-rgb:    {{ site_settings.text_color_rgb }};
           --card-rgb:    {{ site_settings.card_color_rgb }};
           ...
         }
       </style>
   ============================================================
   الترتيب:
   01  Variables & Reset
   02  Layout Utilities
   03  Navbar & Header
   04  Hero & Slider
   05  Offer Section
   06  Menu Cards (Food Section)
   07  Item Detail
   08  About / Book / Client / Contact
   09  Footer
   10  Components (Loader · Chips · Category)
   11  Responsive
   ============================================================ */

@import url("https://fonts.googleapis.com/css2?family=Cairo:wght@300;400;600;700;800&family=Dancing+Script:wght@500;700&display=swap");


/* ============================================================
   01 — VARIABLES & RESET
   ============================================================ */

:root {
  /* fallback — تُستبدل بالقيم الديناميكية من base.html */
  --bg:          var(--bg);
  --primary:     var(--primary);
  --primary-rgb: 245, 166, 35;
  --bg-rgb:      11, 11, 15;
  --card-rgb:    21, 21, 28;
  --text-rgb:    255, 255, 255;

  --primary-dim:   rgba(var(--primary-rgb), 0.12);
  --primary-hover: rgba(var(--primary-rgb), 0.85);
  --btn-grad: linear-gradient(135deg, var(--primary) 0%, rgba(var(--primary-rgb), 0.75) 100%);

  --card:    var(--card);
  --card-2:  var(--card-2);
  --text:    #ffffff;
  --muted:   rgba(255, 255, 255, 0.55);

  --glass:    rgba(255, 255, 255, 0.05);
  --stroke:   rgba(255, 255, 255, 0.08);
  --stroke-2: rgba(255, 255, 255, 0.14);

  --shadow-sm: 0 4px 16px  rgba(var(--bg-rgb), 0.35);
  --shadow-md: 0 10px 40px rgba(var(--bg-rgb), 0.55);
  --shadow-lg: 0 20px 60px rgba(var(--bg-rgb), 0.70);

  --radius-sm:   8px;
  --radius-md:   14px;
  --radius-lg:   22px;
  --radius-pill: 50px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
.why-section{
    padding:120px 20px;
    background:
        radial-gradient(circle at top,
        rgba(var(--primary-rgb), .08),
        transparent 40%),
        var(--bg);
}

.section-head{
    text-align:center;
    margin-bottom:60px;
}

.section-badge{
    display:inline-block;
    padding:8px 18px;
    border-radius:50px;
    background:rgba(var(--primary-rgb), .12);
    color:var(--primary);
    font-size:13px;
    margin-bottom:15px;
}

.section-head h2{
    color:#fff;
    font-size:42px;
    font-weight:800;
    margin-bottom:15px;
}

.section-head p{
    color:rgba(255,255,255,.65);
    max-width:700px;
    margin:auto;
    line-height:2;
}

.why-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:24px;
}

.why-card{
    background:rgba(255,255,255,.04);
    border:1px solid rgba(255,255,255,.08);

    border-radius:24px;
    padding:35px 25px;

    text-align:center;

    backdrop-filter:blur(15px);

    transition:.35s ease;
}

.why-card:hover{
    transform:translateY(-10px);
    border-color:var(--primary);
    box-shadow:0 25px 60px rgba(var(--bg-rgb), 0.4);
}

.why-icon{
    width:80px;
    height:80px;

    margin:auto auto 20px;

    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    background:rgba(var(--primary-rgb), .12);
    border:1px solid rgba(var(--primary-rgb), .25);
}

.why-icon i{
    font-size:36px;
    color:var(--primary);
}

.why-card h3{
    color:#fff;
    font-size:22px;
    margin-bottom:12px;
    font-weight:700;
}

.why-card p{
    color:rgba(255,255,255,.65);
    line-height:1.9;
    font-size:14px;
}

@media(max-width:768px){

    .why-section{
        padding:80px 15px;
    }

    .section-head h2{
        font-size:30px;
    }

    .why-card{
        padding:28px 20px;
    }

}
/* =========================
   GALLERY SECTION
========================= */

.gallery-section{
    padding:100px 0;
    background:
        radial-gradient(circle at top,
        rgba(var(--primary-rgb), .08),
        transparent 45%),
        var(--bg);
}

.section-head{
    text-align:center;
    max-width:700px;
    margin:0 auto 50px;
}

.section-badge{
    display:inline-block;
    padding:8px 18px;
    border-radius:50px;
    background:rgba(var(--primary-rgb), .12);
    color:var(--primary);
    font-size:14px;
    margin-bottom:15px;
}

.section-head h2{
    font-size:42px;
    font-weight:800;
    color:#fff;
    margin-bottom:15px;
}

.section-head p{
    color:var(--muted);
    line-height:1.9;
}

/* GRID */

.gallery-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    grid-auto-rows:250px;
    gap:20px;
}

.gallery-item{
    position:relative;
    overflow:hidden;
    border-radius:24px;
    cursor:pointer;
    border:1px solid rgba(255,255,255,.08);
}

.gallery-item.large{
    grid-column:span 2;
    grid-row:span 2;
}

/* IMAGE */

.gallery-item img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:transform .8s ease;
}

/* OVERLAY */

.gallery-overlay{
    position:absolute;
    inset:0;
    display:flex;
    align-items:flex-end;
    padding:30px;
    background:
        linear-gradient(
            to top,
            rgba(var(--bg-rgb), 0.85),
            transparent
        );
}

.gallery-overlay span{
    color:#fff;
    font-size:26px;
    font-weight:700;
}

/* HOVER */

.gallery-item:hover img{
    transform:scale(1.12);
}

.gallery-item:hover{
    transform:translateY(-5px);
    transition:.4s;
    box-shadow:
        0 20px 40px rgba(var(--bg-rgb), 0.4);
}

/* MOBILE */

/* =========================
   TABLET
========================= */

@media (max-width:992px){

    .gallery-section{
        padding:80px 0;
    }

    /* نحافظ على نفس النظام لكن نصغّره */
    .gallery-grid{
        grid-template-columns:repeat(4, 1fr);
        grid-auto-rows:180px;
        gap:14px;
    }

    .gallery-item.large{
        grid-column:span 2;
        grid-row:span 2;
    }

    .gallery-overlay span{
        font-size:20px;
    }
}

/* =========================
   MOBILE FINAL FALLBACK
========================= */

@media (max-width:600px){

    .gallery-section{
        padding:50px 0;
    }

    .section-head h2{
        font-size:26px;
    }

    .section-head p{
        font-size:14px;
    }

    /* fallback فقط هنا */
    .gallery-grid{
        grid-template-columns:repeat(2, 1fr);
        grid-auto-rows:160px;
        gap:10px;
    }

    /* نحافظ على الكبير لكن يتأقلم */
    .gallery-item.large{
        grid-column:span 2;
        grid-row:span 2;
    }

    .gallery-overlay{
        padding:12px;
    }

    .gallery-overlay span{
        font-size:14px;
    }
}
/* =========================
   MOBILE
========================= */


/* ==========================
   FEATURED SECTION
========================== */

.featured-section{
    padding:100px 0;
    background:
        radial-gradient(circle at top,
        rgba(var(--primary-rgb), .08),
        transparent 40%),
        var(--bg);
}

.featured-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:28px;
}

/* CARD */

.featured-card{
    display:flex;
    flex-direction:column;

    background:var(--card);

    border-radius:28px;
    overflow:hidden;

    text-decoration:none;
    color:#fff;

    border:1px solid rgba(255,255,255,.08);

    transition:.4s ease;

    position:relative;
}

.featured-card:hover{
    transform:translateY(-10px);
    border-color:rgba(var(--primary-rgb), .35);
    box-shadow:0 25px 50px rgba(var(--bg-rgb), 0.45);
}

/* IMAGE */

.featured-image{
    position:relative;
    height:280px;
    overflow:hidden;
}

.featured-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:transform .8s ease;
}

.featured-card:hover img{
    transform:scale(1.12);
}

.featured-overlay{
    position:absolute;
    inset:0;

    background:
    linear-gradient(
        to top,
        rgba(var(--bg-rgb), 0.75),
        rgba(var(--bg-rgb), 0)
    );
}

/* BADGE */

.featured-badge{
    position:absolute;
    top:18px;
    right:18px;

    background:rgba(var(--primary-rgb), .95);

    color:var(--bg);

    font-weight:700;
    font-size:13px;

    padding:8px 14px;

    border-radius:50px;
}

/* CONTENT */

.featured-content{
    padding:24px;
}

.featured-content h3{
    font-size:24px;
    font-weight:700;
    margin-bottom:12px;
}

.featured-content p{
    color:var(--muted);
    line-height:1.8;
    min-height:60px;
}

/* FOOTER */

.featured-footer{
    margin-top:20px;

    display:flex;
    justify-content:space-between;
    align-items:center;
}

.price{
    color:var(--primary);
    font-size:24px;
    font-weight:800;
}

.view-btn{
    display:flex;
    align-items:center;
    gap:8px;

    color:#fff;
    font-size:14px;

    transition:.3s;
}

.featured-card:hover .view-btn{
    color:var(--primary);
}

/* MOBILE */

@media(max-width:768px){

    .featured-grid{
        grid-template-columns:1fr;
    }

    .featured-image{
        height:240px;
    }

    .featured-content h3{
        font-size:20px;
    }

}
.cta-section{
    background: linear-gradient(135deg, var(--card), var(--card-2));
    padding: 90px 20px;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.cta-section::before{
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.05), transparent 60%);
    animation: rotateBg 12s linear infinite;
}

@keyframes rotateBg{
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.cta-section{
    background: linear-gradient(135deg, var(--card), var(--card-2));
    padding: 90px 20px;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}

/* تأثير خفيف بالخلفية */
.cta-section::before{
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.05), transparent 60%);
    animation: rotateBg 12s linear infinite;
}

@keyframes rotateBg{
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.cta-container{
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: auto;
    padding: 0 15px;
}

/* العنوان */
.cta-title{
    font-size: 34px;
    font-weight: bold;
    margin-bottom: 15px;
}

/* الوصف */
.cta-subtitle{
    font-size: 18px;
    color: #fff;
    margin-bottom: 30px;
    line-height: 1.8;
}

/* الزر */
.cta-btn{
    display: inline-block;
    padding: 14px 34px;
    background: var(--primary);
    color: var(--bg);
    font-weight: bold;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(var(--bg-rgb), 0.3);
}

.cta-btn:hover{
    transform: translateY(-3px) scale(1.05);
    background: var(--primary);
}

/* =========================
   📱 Responsive Tablets
========================= */
@media (max-width: 768px){

    .cta-section{
        padding: 70px 15px;
    }

    .cta-title{
        font-size: 28px;
    }

    .cta-subtitle{
        font-size: 16px;
        margin-bottom: 25px;
    }

    .cta-btn{
        padding: 12px 28px;
        font-size: 15px;
    }
}

/* =========================
   📱 Responsive Mobile
========================= */
@media (max-width: 480px){

    .cta-section{
        padding: 60px 12px;
    }

    .cta-title{
        font-size: 22px;
        line-height: 1.4;
    }

    .cta-subtitle{
        font-size: 14px;
        line-height: 1.7;
    }

    .cta-btn{
        width: 100%;
        display: block;
        padding: 14px;
        font-size: 15px;
        border-radius: 12px;
    }
}
.hero-modern{
    min-height:100vh;
    display:flex;
    align-items:center;
    position:relative;
    overflow:hidden;
    background:var(--bg);
}

.hero-content{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
}

.hero-text h1{
    font-size:72px;
    font-weight:900;
    line-height:1.1;
    color:#fff;
}

.hero-text p{
    margin-top:20px;
    color:#bdbdbd;
    font-size:18px;
    line-height:2;
}

.hero-image img{
    width:100%;
    border-radius:30px;
    box-shadow:0 30px 80px rgba(var(--bg-rgb), 0.5);
}

.btn-main{
    background:var(--primary);
    color:var(--bg);
    padding:15px 30px;
    border-radius:50px;
    text-decoration:none;
    font-weight:700;
}

.stats-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
}

.stat-card{
    background:var(--card);
    padding:30px;
    text-align:center;
    border-radius:20px;
}

.category-grid,
.featured-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:25px;
}

.category-card,
.food-card{
    border-radius:24px;
    overflow:hidden;
    position:relative;
    background:var(--card);
    transition:.3s;
}

.category-card:hover,
.food-card:hover{
    transform:translateY(-8px);
}

.gallery-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:15px;
}

.gallery-grid img{
    width:100%;
    height:300px;
    object-fit:cover;
    border-radius:20px;
}

.cta-section{
    padding:100px 20px;
    text-align:center;
    background:linear-gradient(
        135deg,
        var(--primary),
        var(--primary)
    );
}

@media(max-width:768px){

    .hero-content{
        grid-template-columns:1fr;
    }

    .hero-text h1{
        font-size:42px;
    }

    .stats-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .gallery-grid{
        grid-template-columns:1fr;
    }

}
html,
body {
  direction: rtl;
  text-align: right;
  font-family: "Cairo", sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background-color: var(--bg);
  overflow-x: hidden;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  background-color: var(--bg) !important;
}

h1, h2 {
  font-family: "Dancing Script", cursive;
  line-height: 1.2;
}

h3, h4, h5, h6 {
  font-family: "Cairo", sans-serif;
  line-height: 1.3;
}

a, a:hover, a:focus {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.btn:focus,
.btn:active,
button:focus {
  outline: none !important;
  box-shadow: none !important;
}


/* ============================================================
   02 — LAYOUT UTILITIES
   ============================================================ */

.layout_padding        { padding: 90px 0; }
.layout_padding2       { padding: 75px 0; }
.layout_padding2-top   { padding-top: 75px; }
.layout_padding2-bottom{ padding-bottom: 75px; }
.layout_padding-top    { padding-top: 90px; }
.layout_padding-bottom { padding-bottom: 90px; }

.heading_container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.heading_container.heading_center {
  align-items: center;
  text-align: center;
}

.heading_container h2 {
  position: relative;
  font-size: 2.6rem;
  font-weight: 700;
  margin-bottom: 0;
  color: var(--text);
}

.heading_container h2 span {
  color: var(--primary);
}

.heading_container p {
  margin-top: 10px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 15px;
}

/* خط تزيين تحت العنوان */
.heading_container h2::after {
  content: "";
  display: block;
  width: 48px;
  height: 3px;
  background: var(--primary);
  border-radius: 2px;
  margin-top: 10px;
}

.heading_container.heading_center h2::after {
  margin-inline: auto;
}


/* ============================================================
   03 — NAVBAR & HEADER
   ============================================================ */

.hero_area {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.sub_page .hero_area {
  min-height: auto;
}

.bg-box {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.bg-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

/* طبقة تعتيم فوق صورة الهيرو */
.bg-box::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(var(--bg-rgb), 0.72) 0%,
    rgba(var(--bg-rgb), 0.45) 60%,
    rgba(var(--bg-rgb), 0.90) 100%
  );
}

.header_section {
  position: relative;
  z-index: 10;
  padding: 18px 0;
  border-bottom: 1px solid var(--stroke);
  backdrop-filter: blur(12px);
  background: rgba(var(--bg-rgb), 0.40);
}

.header_section .container-fluid {
  padding-inline: 25px;
}

/* الشعار */
.brand-logo {
  display: flex;
  align-items: center;
  padding: 0;
}

.logo-box {
  width: 160px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  border-radius: var(--radius-md);
  background: var(--glass);
  border: 1px solid var(--stroke-2);
  backdrop-filter: blur(10px);
  transition: border-color 0.3s, background 0.3s;
}

.logo-box:hover {
  border-color: var(--primary);
  background: var(--primary-dim);
}

.logo-box img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}

.navbar-brand span {
  font-family: "Dancing Script", cursive;
  font-weight: 700;
  font-size: 30px;
  color: var(--text);
}

/* روابط القائمة */
.custom_nav-container {
  padding: 0;
}

.custom_nav-container .navbar-nav {
  padding-left: 14%;
  padding-right: 0;
}

.custom_nav-container .navbar-nav .nav-item .nav-link {
  padding: 6px 18px;
  color: var(--text);
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border-radius: var(--radius-pill);
  transition: color 0.25s, background 0.25s;
  position: relative;
}

.custom_nav-container .navbar-nav .nav-item .nav-link::after {
  content: "";
  position: absolute;
  bottom: 2px;
  right: 18px;
  left: 18px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transform: scaleX(0);
  transition: transform 0.25s ease;
  transform-origin: right;
}

.custom_nav-container .navbar-nav .nav-item:hover .nav-link,
.custom_nav-container .navbar-nav .nav-item.active .nav-link {
  color: var(--primary);
}

.custom_nav-container .navbar-nav .nav-item:hover .nav-link::after,
.custom_nav-container .navbar-nav .nav-item.active .nav-link::after {
  transform: scaleX(1);
}

/* زر الأوامر */
.user_option {
  display: flex;
  align-items: center;
  gap: 10px;
}

.user_option .order_online {
  display: inline-block;
  padding: 9px 28px;
  background: var(--btn-grad);
  color: var(--bg);
  font-weight: 700;
  font-size: 14px;
  border-radius: var(--radius-pill);
  border: none;
  transition: opacity 0.25s, transform 0.2s;
  box-shadow: 0 4px 18px rgba(var(--primary-rgb), 0.30);
}

.user_option .order_online:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}

/* زر التوسيع (موبايل) */
.custom_nav-container .navbar-toggler {
  padding: 0;
  width: 36px;
  height: 40px;
  border: none;
  outline: none;
  transition: transform 0.3s;
}

.custom_nav-container .navbar-toggler span {
  display: block;
  width: 34px;
  height: 3px;
  background: var(--text);
  margin: 7px 0;
  border-radius: 3px;
  transition: transform 0.3s, opacity 0.3s;
  position: relative;
}

.custom_nav-container .navbar-toggler span::before,
.custom_nav-container .navbar-toggler span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--text);
  border-radius: 3px;
  transition: transform 0.3s;
}

.custom_nav-container .navbar-toggler span::before { top: -10px; }
.custom_nav-container .navbar-toggler span::after  { top:  10px; }

.custom_nav-container .navbar-toggler[aria-expanded="true"] {
  transform: rotate(360deg);
}

.custom_nav-container .navbar-toggler[aria-expanded="true"] span {
  transform: rotate(45deg);
}

.custom_nav-container .navbar-toggler[aria-expanded="true"] span::before,
.custom_nav-container .navbar-toggler[aria-expanded="true"] span::after {
  transform: rotate(90deg);
  top: 0;
}


/* ============================================================
   04 — HERO & SLIDER
   ============================================================ */

.slider_section {
  flex: 1;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 1;
  padding: 60px 0 90px;
}

.slider_section .row {
  align-items: center;
}

.slider_section #customCarousel1 {
  width: 100%;
  position: unset;
}

.slider_section .detail-box {
  color: var(--text);
  margin-bottom: 120px;
}

.slider_section .detail-box h1 {
  font-size: 3.8rem;
  font-weight: 700;
  margin-bottom: 16px;
  text-shadow: 0 2px 18px rgba(var(--bg-rgb), 0.6);
}

.slider_section .detail-box p {
  font-size: 15px;
  color: rgba(255,255,255,0.80);
  max-width: 480px;
}

.slider_section .detail-box a {
  display: inline-block;
  margin-top: 24px;
  padding: 12px 46px;
  background: var(--btn-grad);
  color: var(--bg);
  font-weight: 700;
  border-radius: var(--radius-pill);
  border: none;
  transition: opacity 0.25s, transform 0.2s, box-shadow 0.25s;
  box-shadow: 0 6px 24px rgba(var(--primary-rgb), 0.35);
}

.slider_section .detail-box a:hover {
  opacity: 0.88;
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(var(--primary-rgb), 0.45);
}

.slider_section .img-box img {
  width: 100%;
  border-radius: var(--radius-lg);
  filter: drop-shadow(0 20px 40px rgba(var(--primary-rgb), 0.15));
}

.slider_section .carousel-indicators {
  position: unset;
  margin: 0;
  justify-content: flex-start;
  align-items: center;
  gap: 6px;
}

.slider_section .carousel-indicators li {
  background: rgba(255,255,255,0.35);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  opacity: 1;
  transition: background 0.3s, transform 0.3s;
}

.slider_section .carousel-indicators li.active {
  background: var(--primary);
  width: 28px;
  height: 10px;
  border-radius: var(--radius-pill);
}


/* ============================================================
   05 — OFFER SECTION
   ============================================================ */

.offer_section {
  position: relative;
  padding-top: 50px;
}

.offer_section .box {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 45px;
  padding: 24px 20px;
  background: var(--card);
  border: 1px solid var(--stroke);
  border-radius: var(--radius-lg);
  color: var(--text);
  transition: transform 0.3s, box-shadow 0.3s;
}

.offer_section .box:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.offer_section .box .img-box {
  width: 175px;
  min-width: 175px;
  height: 175px;
  border-radius: 50%;
  border: 4px solid var(--primary);
  overflow: hidden;
  background: var(--card-2);
  transition: box-shadow 0.3s;
}

.offer_section .box:hover .img-box {
  box-shadow: 0 0 0 6px var(--primary-dim);
}

.offer_section .box .img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.offer_section .box:hover .img-box img {
  transform: scale(1.08);
}

.offer_section .box .detail-box h5 {
  font-family: "Dancing Script", cursive;
  font-size: 22px;
  margin: 0;
  color: var(--muted);
}

.offer_section .box .detail-box h6 {
  font-family: "Dancing Script", cursive;
  margin: 8px 0;
  color: var(--text);
}

.offer_section .box .detail-box h6 span {
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--primary);
}

.offer_section .box .detail-box a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 28px;
  background: var(--btn-grad);
  color: var(--bg);
  font-weight: 700;
  font-size: 14px;
  border-radius: var(--radius-pill);
  border: none;
  transition: opacity 0.25s, transform 0.2s;
}

.offer_section .box .detail-box a:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}

.offer_section .box .detail-box a svg {
  width: 18px;
  height: auto;
  fill: var(--bg);
}


/* ============================================================
   06 — MENU CARDS (FOOD SECTION)
   ============================================================ */

.food_section .filters_menu {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin: 45px 0 24px;
  padding: 0;
}

.food_section .filters_menu li {
  padding: 7px 22px;
  cursor: pointer;
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
  border: 1px solid var(--stroke);
  background: var(--glass);
  transition: color 0.25s, background 0.25s, border-color 0.25s;
}

.food_section .filters_menu li:hover {
  color: var(--primary);
  border-color: var(--primary);
  background: var(--primary-dim);
}

.food_section .filters_menu li.active {
  background: var(--primary);
  color: var(--bg);
  border-color: var(--primary);
}

/* البطاقة الحديثة */
.menu-card-modern {
  background: var(--card);
  border: 1px solid var(--stroke);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s, box-shadow 0.35s;
  margin-top: 24px;
}

.menu-card-modern:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
}

/* صورة البطاقة */
.menu-image-modern {
  position: relative;
  height: 240px;
  overflow: hidden;
  background: var(--card-2);
}

.menu-image-modern img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.menu-card-modern:hover .menu-image-modern img {
  transform: scale(1.08);
}

/* طبقة overlay */
.menu-overlay-modern {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(var(--bg-rgb), 0.65) 0%, transparent 55%);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 14px;
  pointer-events: none;
}

.menu-overlay-modern > * {
  pointer-events: auto;
}

/* الشارات */
.price-badge {
  display: inline-block;
  background: var(--primary);
  color: var(--bg);
  font-weight: 700;
  font-size: 13px;
  padding: 5px 14px;
  border-radius: var(--radius-pill);
  align-self: flex-start;
}

.featured-badge {
  background: #e63946;
  color: #fff;
  font-size: 13px;
  padding: 5px 10px;
  border-radius: 50%;
  line-height: 1;
}

/* زر quick-view */
.quick-view {
  background: rgba(255,255,255,0.88);
  color: var(--bg);
  text-align: center;
  padding: 9px 14px;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 13px;
  transition: background 0.3s, color 0.3s;
  align-self: flex-end;
  width: 100%;
}

.quick-view:hover {
  background: var(--primary);
  color: var(--bg);
}

/* جسم البطاقة */
.menu-body-modern {
  padding: 18px;
}

.title-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
  gap: 8px;
}

.title-row h3 {
  font-size: 17px;
  font-weight: 700;
  margin: 0;
  color: var(--text);
}

.cat-pill {
  background: var(--glass);
  border: 1px solid var(--stroke);
  color: var(--muted);
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  font-size: 11px;
  white-space: nowrap;
}

.desc {
  color: var(--muted);
  font-size: 14px;
  min-height: 40px;
  line-height: 1.55;
}

.meta-row {
  display: flex;
  gap: 14px;
  margin: 10px 0;
  font-size: 13px;
  color: var(--muted);
  flex-wrap: wrap;
}

.tags-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 8px;
}

.tag-soft {
  background: var(--glass);
  border: 1px solid var(--stroke);
  color: var(--muted);
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  font-size: 11px;
}

.tag-hot {
  background: #28a745;
  color: #fff;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  font-size: 11px;
}

/* الكارد القديم (food_section .box) — متوافق مع القديم */
.food_section .box {
  position: relative;
  margin-top: 24px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(to bottom, #f1f2f3 25px, #222831 25px);
  color: var(--text);
  transition: transform 0.3s;
}

.food_section .box .img-box {
  background: #f1f2f3;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 210px;
  border-radius: 0 0 0 40px;
  padding: 20px;
}

.food_section .box .img-box img {
  max-width: 100%;
  max-height: 140px;
  transition: transform 0.3s;
}

.food_section .box:hover .img-box img {
  transform: scale(1.08);
}

.food_section .box .detail-box {
  padding: 22px;
  background: #222831;
}

.food_section .box .detail-box h5 {
  font-weight: 700;
  color: #fff;
}

.food_section .box .detail-box p {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
}

.food_section .box .detail-box h6 {
  margin-top: 10px;
  color: var(--primary);
  font-weight: 700;
}

.food_section .box .options {
  display: flex;
  justify-content: space-between;
  margin-top: 14px;
}

.food_section .box .options a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--primary);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.2s;
}

.food_section .box .options a:hover {
  opacity: 0.80;
}

.food_section .box .options a svg {
  width: 17px;
  height: auto;
  fill: var(--bg);
}

.food_section .btn-box {
  display: flex;
  justify-content: center;
  margin-top: 45px;
}

.food_section .btn-box a {
  display: inline-block;
  padding: 12px 55px;
  background: var(--btn-grad);
  color: var(--bg);
  font-weight: 700;
  border-radius: var(--radius-pill);
  border: none;
  transition: opacity 0.25s, transform 0.2s;
}

.food_section .btn-box a:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}


/* ============================================================
   07 — ITEM DETAIL
   ============================================================ */

.item-detail {
  padding: 60px 0;
  background: var(--bg);
  color: var(--text);
}

.item-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  align-items: start;
}

/* الصورة الرئيسية */
.main-image img {
  width: 100%;
  border-radius: var(--radius-lg);
  object-fit: cover;
  box-shadow: var(--shadow-md);
}

/* الصور المصغرة */
.thumbs {
  display: flex;
  gap: 10px;
  margin-top: 12px;
  flex-wrap: wrap;
}

.thumbs img {
  width: 68px;
  height: 68px;
  border-radius: var(--radius-sm);
  object-fit: cover;
  cursor: pointer;
  opacity: 0.6;
  border: 2px solid transparent;
  transition: opacity 0.3s, border-color 0.3s, transform 0.2s;
}

.thumbs img:hover,
.thumbs img.active {
  opacity: 1;
  border-color: var(--primary);
  transform: scale(1.04);
}

/* المعلومات */
.item-info h1 {
  font-size: 34px;
  margin-bottom: 10px;
  color: var(--text);
}

.price {
  font-size: 28px;
  color: var(--primary);
  font-weight: 700;
  margin: 14px 0;
}

.badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

.badge {
  background: var(--glass);
  border: 1px solid var(--stroke);
  color: var(--muted);
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  font-size: 12px;
}

.badge.hot {
  background: var(--primary);
  color: var(--bg);
  border-color: var(--primary);
}

.meta {
  display: flex;
  gap: 16px;
  color: var(--muted);
  margin: 12px 0;
  flex-wrap: wrap;
  font-size: 14px;
}

/* خيارات الحجم/الإضافات */
.section {
  margin-top: 24px;
}

.section h3 {
  margin-bottom: 12px;
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
}

.options {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.option {
  background: var(--glass);
  border: 1px solid var(--stroke);
  color: var(--text);
  padding: 10px 16px;
  border-radius: var(--radius-md);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  transition: background 0.25s, border-color 0.25s, color 0.25s;
  user-select: none;
}

.option:hover,
.option.selected {
  background: var(--primary);
  color: var(--bg);
  border-color: var(--primary);
}

/* زر الإضافة */
.cta {
  margin-top: 28px;
}

.add-btn {
  width: 100%;
  padding: 16px;
  background: var(--btn-grad);
  border: none;
  border-radius: var(--radius-md);
  color: var(--bg);
  font-family: "Cairo", sans-serif;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  transition: opacity 0.25s, transform 0.2s, box-shadow 0.25s;
  box-shadow: 0 6px 24px rgba(var(--primary-rgb), 0.30);
}

.add-btn:hover {
  opacity: 0.88;
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(var(--primary-rgb), 0.42);
}

/* المنتجات المرتبطة */
.related {
  padding: 55px 0;
  background: var(--card);
}

.related h2 {
  margin-bottom: 24px;
  text-align: center;
  font-size: 2.2rem;
  color: var(--text);
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
}

.related-card {
  background: var(--card-2);
  border: 1px solid var(--stroke);
  padding: 12px;
  border-radius: var(--radius-md);
  text-decoration: none;
  color: var(--text);
  text-align: center;
  transition: transform 0.3s, border-color 0.3s;
}

.related-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary);
  color: var(--text);
}

.related-card img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  margin-bottom: 8px;
}


/* ============================================================
   08 — ABOUT / BOOK / CLIENT / CONTACT
   ============================================================ */

/* About */
.about_section {
  background: var(--card);
  color: var(--text);
}

.about_section .row {
  align-items: center;
}

.about_section .img-box {
  display: flex;
  justify-content: center;
  position: relative;
}

.about_section .img-box img {
  width: 100%;
  max-width: 440px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  position: relative;
  z-index: 2;
}

.about_section .detail-box p {
  margin-top: 14px;
  color: var(--muted);
}

.about_section .detail-box a {
  display: inline-block;
  margin-top: 18px;
  padding: 11px 44px;
  background: var(--btn-grad);
  color: var(--bg);
  font-weight: 700;
  border-radius: var(--radius-pill);
  transition: opacity 0.25s, transform 0.2s;
}

.about_section .detail-box a:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}

/* Book Table */
.book_section {
  position: relative;
}

.book_section .heading_container {
  margin-bottom: 28px;
}

.book_section .form_container .form-control {
  width: 100%;
  height: 50px;
  padding-inline: 18px;
  background: var(--glass);
  border: 1px solid var(--stroke-2);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-family: "Cairo", sans-serif;
  font-size: 15px;
  outline: none;
  box-shadow: none;
  margin-bottom: 22px;
  transition: border-color 0.25s;
}

.book_section .form_container .form-control:focus {
  border-color: var(--primary);
}

.book_section .form_container .form-control::placeholder {
  color: var(--muted);
}

.book_section .form_container button {
  margin-top: 14px;
  border: none;
  padding: 11px 55px;
  background: var(--btn-grad);
  color: var(--bg);
  font-family: "Cairo", sans-serif;
  font-weight: 700;
  font-size: 15px;
  border-radius: var(--radius-pill);
  transition: opacity 0.25s, transform 0.2s;
}

.book_section .form_container button:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}

.book_section .map_container {
  width: 100%;
  height: 345px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--stroke);
}

.book_section .map_container #googleMap {
  height: 100%;
  width: 100%;
}

/* Client / Feedback */
.client_section .heading_container {
  margin-bottom: 32px;
}

.client_section .box {
  display: flex;
  flex-direction: column;
  margin: 14px;
}

.client_section .box .img-box {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 110px;
  position: relative;
  margin-top: 30px;
}

.client_section .box .img-box img {
  border-radius: 50%;
  border: 4px solid var(--primary);
  position: relative;
  width: 100%;
}

.client_section .box .img-box::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: 18px;
  height: 18px;
  background: var(--primary);
  transform: rotate(45deg) translateX(-50%);
}

.client_section .box .detail-box {
  background: var(--card);
  border: 1px solid var(--stroke);
  color: var(--text);
  padding: 24px 22px 16px;
  border-radius: var(--radius-md);
}

.client_section .box .detail-box h6 {
  font-weight: 700;
  font-size: 17px;
  margin: 14px 0 5px;
  color: var(--text);
}

.client_section .box .detail-box p {
  margin-bottom: 0;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
}

.client_section .owl-carousel .owl-nav {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 40px;
}

.client_section .owl-carousel .owl-nav .owl-prev,
.client_section .owl-carousel .owl-nav .owl-next {
  width: 44px;
  height: 44px;
  background: var(--primary);
  color: var(--bg);
  font-size: 22px;
  border-radius: 50%;
  outline: none;
  transition: opacity 0.2s;
}

.client_section .owl-carousel .owl-nav .owl-prev:hover,
.client_section .owl-carousel .owl-nav .owl-next:hover {
  opacity: 0.80;
}

/* Contact */
.contact_section .heading_container {
  margin-bottom: 45px;
}

.contact_section .form_container .form-group {
  margin-bottom: 22px;
}

.contact_section .form_container input {
  width: 100%;
  height: 50px;
  padding-inline: 18px;
  background: var(--glass);
  border: 1px solid var(--stroke-2);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-family: "Cairo", sans-serif;
  transition: border-color 0.25s;
}

.contact_section .form_container input:focus {
  border-color: var(--primary);
  outline: none;
}

.contact_section .form_container input::placeholder {
  color: var(--muted);
}

.contact_section .form_container input.message-box {
  height: 120px;
  border-radius: var(--radius-sm);
  padding-top: 14px;
}

.contact_section .form_container .btn-box {
  display: flex;
  justify-content: center;
}

.contact_section .form_container button {
  margin-top: 10px;
  border: none;
  padding: 11px 55px;
  background: var(--btn-grad);
  color: var(--bg);
  font-family: "Cairo", sans-serif;
  font-weight: 700;
  border-radius: var(--radius-pill);
  transition: opacity 0.25s, transform 0.2s;
}

.contact_section .form_container button:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}


/* ============================================================
   09 — FOOTER
   ============================================================ */

.footer_section {
  background: var(--card);
  border-top: 1px solid var(--stroke);
  color: var(--text);
  padding: 75px 0 40px;
  text-align: center;
}

.footer_section h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 18px;
  color: var(--text);
}

.footer_section .footer-logo {
  display: block;
  font-family: "Dancing Script", cursive;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--primary);
}

.footer_section p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.footer_section .footer-col {
  margin-bottom: 30px;
}

.footer_section .footer_contact .contact_link_box {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer_section .footer_contact .contact_link_box a {
  color: var(--muted);
  font-size: 14px;
  transition: color 0.25s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.footer_section .footer_contact .contact_link_box a i {
  color: var(--primary);
  font-size: 14px;
}

.footer_section .footer_contact .contact_link_box a:hover {
  color: var(--primary);
}

.footer_section .footer_social {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 18px;
  margin-bottom: 10px;
}

.footer_section .footer_social a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--glass);
  border: 1px solid var(--stroke-2);
  color: var(--muted);
  font-size: 15px;
  transition: background 0.25s, color 0.25s, border-color 0.25s;
}

.footer_section .footer_social a:hover {
  background: var(--primary);
  color: var(--bg);
  border-color: var(--primary);
}

.footer_section .footer-info {
  text-align: center;
  margin-top: 30px;
  padding-top: 22px;
  border-top: 1px solid var(--stroke);
}

.footer_section .footer-info p {
  color: var(--muted);
  margin: 0;
  font-size: 13px;
}

.footer_section .footer-info p a {
  color: var(--primary);
  transition: opacity 0.2s;
}

.footer_section .footer-info p a:hover {
  opacity: 0.80;
}


/* ============================================================
   10 — COMPONENTS
   ============================================================ */

/* Page Loader */
#page-loader {
  position: fixed;
  inset: 0;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  z-index: 99999;
  transition: opacity 0.45s ease, visibility 0.45s ease;
}

#page-loader.hide {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.loader-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.loader-box img {
  width: 90px;
  height: 90px;
  object-fit: contain;
  animation: loaderFloat 2s ease-in-out infinite;
  filter: drop-shadow(0 0 20px rgba(var(--primary-rgb), 0.5));
}

/* نص اسم المطعم تحت اللوغو */
.loader-name {
  font-family: "Dancing Script", cursive;
  font-size: 28px;
  font-weight: 700;
  color: var(--text);
  opacity: 0.9;
  letter-spacing: 1px;
}

/* شريط تحميل */
.loader-bar-wrap {
  width: 140px;
  height: 3px;
  background: rgba(var(--text-rgb), 0.08);
  border-radius: 10px;
  overflow: hidden;
}

.loader-bar {
  height: 100%;
  background: var(--primary);
  border-radius: 10px;
  animation: loaderBar 1.8s ease-in-out infinite;
}

@keyframes loaderFloat {
  0%, 100% { transform: translateY(0);    filter: drop-shadow(0 0 20px rgba(var(--primary-rgb), 0.5)); }
  50%       { transform: translateY(-8px); filter: drop-shadow(0 8px 30px rgba(var(--primary-rgb), 0.7)); }
}

@keyframes loaderBar {
  0%   { width: 0%;    margin-right: 100%; }
  50%  { width: 60%;   margin-right: 0%; }
  100% { width: 0%;    margin-right: 0%; }
}
/* Chips & Category Section */
.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 18px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--stroke-2);
  background: var(--glass);
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: color 0.25s, background 0.25s, border-color 0.25s;
}

.chip:hover {
  color: var(--primary);
  border-color: var(--primary);
  background: var(--primary-dim);
}

.chip.active {
  background: var(--primary);
  color: var(--bg);
  border-color: var(--primary);
}

.category-section {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}

.main-category {
  font-weight: 700;
  background: var(--card);
  border-color: var(--stroke-2);
}

.sub-category-wrapper {
  display: none;
  padding-right: 20px;
  gap: 8px;
  flex-wrap: wrap;
}

.sub-category-wrapper.show {
  display: flex;
  animation: fadeInDown 0.3s ease;
}

.sub-category {
  font-size: 12px;
  background: var(--card-2);
  opacity: 0.88;
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}


/* ============================================================
   11 — RESPONSIVE
   ============================================================ */

/* Tablet ≤ 992px */
@media (max-width: 992px) {

  .item-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .item-info h1 { font-size: 28px; }
  .price        { font-size: 24px; }

  .thumbs img {
    width: 60px;
    height: 60px;
  }

  .logo-box {
    width: 145px;
    height: 58px;
  }

  .custom_nav-container .navbar-nav {
    padding-left: 0;
  }

}

/* Mobile ≤ 768px */
@media (max-width: 768px) {

  .item-detail { padding: 30px 15px; }

  .item-info h1 {
    font-size: 24px;
    text-align: center;
  }

  .price    { text-align: center; font-size: 22px; }
  .meta     { justify-content: center; }
  .badges   { justify-content: center; }
  .thumbs   { justify-content: center; }
  .options  { justify-content: center; }

  .option {
    width: 100%;
    justify-content: center;
  }

  .add-btn { font-size: 15px; padding: 14px; }

  .related-grid {
    grid-template-columns: 1fr 1fr;
  }

  .slider_section .detail-box h1 {
    font-size: 2.6rem;
  }

  .logo-box {
    width: 128px;
    height: 52px;
    padding: 6px 10px;
    border-radius: var(--radius-sm);
  }

  html, body { font-size: 15px; }

}

/* Small Mobile ≤ 480px */
@media (max-width: 480px) {

  .related-grid { grid-template-columns: 1fr; }

  .thumbs img {
    width: 52px;
    height: 52px;
  }

  .item-info h1 { font-size: 22px; }

  .slider_section .detail-box h1 { font-size: 2.1rem; }
  .heading_container h2          { font-size: 2rem; }

  .logo-box {
    width: 108px;
    height: 46px;
  }

}